blob: b757a715fecb568bcaad09c4d78d8bd8f7cfd94c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<script lang="ts">
import Contact, { type ContactModel } from "$components/contact.svelte";
import type { PageData } from "./$types";
export let data: PageData;
type Model = {
contact: ContactModel;
};
const M: Model = {
contact: data.contact,
};
</script>
<Contact model={M.contact} />
|